home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 8 / Revista CD Expert nº 08 CD1.iso / Utilitarios / Internet / Poco / pocosetup.exe / file0008.bin < prev    next >
Encoding:
Text File  |  1999-04-05  |  19.2 KB  |  292 lines

  1. <html>
  2. <!-- Copyright ⌐ 1999 by Slaven Radic -->
  3. <head>
  4. <title>Poco QuickHelp: PocoScript</title>
  5. </head>
  6. <body>
  7.  
  8. <font face="Arial">
  9. <font size="-1"><b><i><a name="top">Back to</a> <a href="index.html">Poco Help</a> : <a href="pocoscriptindex.html">PocoScript Index</a></i></b></font><p>
  10.  
  11. <b><font size="+1">PocoScript Help</b>
  12.  
  13. <p><a name="general">General</a></p>
  14. </font><p>Scripting in Poco is implemented through PocoScript, an interpreted language created for Poco that focuses on mail processing and handling. Even though it has a narrow focus, PocoScript can act as a conduit between Poco and other applications to implement more sophisticated mail processing, such as mail encryption.</p>
  15. <p>PocoScript is interpreted, high-level language, run directly by the Poco executable. Language syntax is simple, specifically focused at handling e-mail messages. Since the interpreter is part of the main application, to run any scripts you need to have Poco running.</p>
  16. <p>Script is run either on selected messages or on Incoming/Outgoing messages.</p>
  17.  
  18. <font size="-1"><b><i>Back to <a href="index.html">Poco Help</a> : <a href="pocoscriptindex.html">PocoScript Index</a> : <a href="#top">Top</a></i></b></font><p>
  19.  
  20. <p><font size="+1"><a name="variables">Variables</a></font></p>
  21. <p>PocoScript is not a strongly typed language, but it offers four basic variable types. Variables can have any alphanumeric name, prefixed with the type identifier, listed below:</p>
  22. <p>$ - String variable</p>
  23. <p># - Numeric variable</p>
  24. <p>% - Mail message variable</p>
  25. <p>& - Boolean variable</p>
  26. <p>String types can be assigned out of their type, but the assignment will be successful only if the values are interchangeable. This means that you can assign an integer variable to a string variable at any time, but the reverse will work only when the string contains a true integer. As the script environment was designed to run unattended, badly typed assignments will simply fail.</p>
  27. <p>PocoScript provides several system variables at run time with already assigned values, you can use in your programs:</p>
  28. <b><p>$mailpath</b> = Full path to mailboxes</p>
  29. <b><p>$scriptpath</b> = Full path to scripts</p>
  30. <b><p>$apppath</b> = Full path to application root</p>
  31. <b><p>%message</b> = Contains the message passed to the script to be processed. It is either a selected message that script is run on, or a currently incoming or outgoing message. The %message variable can be modified at run-time, but changes are only passed back to Poco when run on incoming or outgoing mail. When %message is modified while script is running on selected messages, the changes will not affect the original message in the mailbox.</p>
  32. <p>Boolean variables (&var) can be used in several forms, all of which resolve to logical true or false. Value "True", "Yes", "On" or digit "1" all resolve to true, while "False", "No", "Off" or digit "0" resolve to false. Any other assignments to a boolean variable will resolve to true, such as number "42" or string "Friday". Boolean variables are not strongly typed, so you can assign an integer or a string to them. You can apply boolean operators to boolean variables, see Operators section. Boolean variables resolved by the interpreter will always resolve as "1" for true and "0" for false, and as such can be assigned to integer or string variables.</p>
  33. <p>Message variables (%var) consist of message header fields and message body. You can use a set of message commands to operate on message variables. They will allow you to operate on messages as a whole, as well as access individual headers, or save them to a file / mailbox.</p>
  34. <p>When assigning values to string variables, place them in double-quotes to ensure they are fully assigned. If you are assigning a single word, without spaces or separators, you don't need to use quotes.</p>
  35.  
  36. <font size="-1"><b><i>Back to <a href="index.html">Poco Help</a> : <a href="pocoscriptindex.html">PocoScript Index</a> : <a href="#top">Top</a></i></b></font><p>
  37.  
  38. <p><font size="+1"><a name="operators">Operators</a></font></p>
  39. <p>Most of the operations on the variables are done through built-in commands, including basic addition and subtraction. Exception is the boolean operators. They take form of </p>
  40. <p>value/variable OPERATOR value/variable</p>
  41. <p>These expressions are used mainly in assignment commands, like SET, and in boolean commands, like IF. Following operators can be used:</p>
  42. <p>> Greater than, works for integers and strings. String are compared alphabetically;</p>
  43. <p>< Less than, usage same as >;</p>
  44. <p>= Equals, evaluates true only for equal integers and EXACTLY identical strings;</p>
  45. <p>! Does not equal, usage same as =;</p>
  46. <p>^ Contained within, works practically only on strings. Evaluates true if the first string is contained within the second string.</p>
  47. <p>When applied to strings, all boolean operators are case sensitive. To ignore the case of the compared strings, apply Lowercase or Uppercase commands to the values before the comparison.</p>
  48.  
  49. <font size="-1"><b><i>Back to <a href="index.html">Poco Help</a> : <a href="pocoscriptindex.html">PocoScript Index</a> : <a href="#top">Top</a></i></b></font><p>
  50.  
  51. <font size="+1"><a name="files">Files</a></font>
  52. <p>PocoScript is fairly adept at handling text files. PocoScript does not support binary files. When opening and saving files, the default directory used is the root directory of your mail folder, or as described above %mailpath. To save outside the default directory, simply use fully qualified file names.</p>
  53. <p>When saving files, the default settings will overwrite any existing files. To change that set AppendToFile to true at the beginning of the script. For instance, if you want to save three messages to a new mailbox call "Stuff", simply run</p>
  54. <p>
  55. AppendToFile true<br>
  56. SaveMessage %m1 Stuff.mbx<br>
  57. SaveMessage %m2 Stuff.mbx<br>
  58. SaveMessage %m3 Stuff.mbx<br>
  59. <p>And that is it. This will create a valid mailbox that you can later open with Poco.</p>
  60.  
  61. <font size="-1"><b><i>Back to <a href="index.html">Poco Help</a> : <a href="pocoscriptindex.html">PocoScript Index</a> : <a href="#top">Top</a></i></b></font><p>
  62.  
  63. <p><font size="+1"><a name="Commands">Commands</a></font></p>
  64. <i><p><a name="mailcommands">Mail commands</a></p>
  65.  
  66. </i><b><p><a name="createmessage">CreateMessage</a> %m</p>
  67. </b><p>Creates a blank message.</p>
  68.  
  69. <b><p><a name="OpenMessage">OpenMessage</a> %m file</p>
  70. </b><p>Loads a message saved to a file in RFC822 format.</p>
  71.  
  72. <b><p><a name="SaveMessage">SaveMessage</a> %m file</p>
  73. </b><p>Saves message in RFC822 format.</p>
  74.  
  75. <b><p><a name="DeleteMessage">DeleteMessage</a> %message</p>
  76. </b><p>Deletes message passed to the script. Practically used only on %message variable; when used on messages instanced by the script, it will only add "D" to the Status header.</p>
  77.  
  78. <b><p><a name="SendMessage">SendMessage</a> %m</p>
  79. </b><p>Sends the prepared message %m via SMTP server setup in the accounts or settings. This command sends immediately, if you want to queue message to be sent later, simple set <i>AppendToFile True </i>and <i>SaveMessage %m Out.mbx</i>.</p>
  80.  
  81. <b><p><a name="EditMessage">EditMessage</a> %m</p>
  82. </b><p>Message %m is opened in Poco to be edited and or possibly sent/queued. EditMessage will not interpret styled text if itÆs in the message, and will extract plain text without formatting tags.</p>
  83.  
  84. <b><p><a name="SetHeader">SetHeader</a> %m header $a</p>
  85. </b><p>Sets "header" of message %m to value of $a. Works only on single-line headers. DonÆt use SetHeader to add message recipients û better support for that is provided by commands AddTo, AddCC and AddBCC.</p>
  86.  
  87. <b><p><a name="ReadHeader">ReadHeader</a> $a header %m</p>
  88. </b><p>Reads "header" value of message %m into variable $a. Works only on single-line headers.</p>
  89.  
  90. <b><p><a name="AddTo">AddTo</a> %m address</p>
  91. </b><p>Adds a primary recipient to message %m.</p>
  92. <b><p><a name="AddCC">AddCC</a> %m address</p>
  93. </b><p>Adds a carbon copy recipient to a message %m.</p>
  94. <b><a name="AddBCC">AddBCC</a> %m address</b>
  95. <p>Adds an anonymous recipient to a message %m.</p>
  96.  
  97. <b><a name="ClearTo">ClearTo</a> %m</b>
  98. <p>Clears all primary recipients.</p>
  99. <b><a name="ClearCC">ClearCC</a> %m</b>
  100. <p>Clears all carbon copy recipients.</p>
  101. <b><a name="ClearBCC">ClearBCC</a> %m</b>
  102. <p>Clears all anonymous recipients.</p>
  103.  
  104. <b><p><a name="OpenBody">OpenBody</a> $a file</p>
  105. </b><p>Opens text file and places it in variable $a. The file may contain line breaks.</p>
  106.  
  107. <b><a name="SaveBody">SaveBody</a> $a file</b>
  108. <p>Saves variable $a to a text file.</p>
  109.  
  110. <b><a name="ClearBody">ClearBody</a> %m</b>
  111. <p>Deletes the message body for message %m.</p>
  112.  
  113. <b><a name="AppendBody">AppendBody</a> $a $b</b>
  114. <p>Appends two strings with a line separator. Primary used on multiline string variables, like message body.</p>
  115.  
  116. <b><a name="AppendSignature">AppendSignature</a> %m</b>
  117. <p>Appends signature of the current account to the message %m. Signature is parsed at this point for any inserted user tags (see Signatures under Advanced Features in the help file). To change the current account see SetAccount.</p>
  118.  
  119. <b><a name="AssignBody">AssignBody</a> %m $a</b>
  120. <p>Assigns variable $a as a body of message %m.</p>
  121.  
  122. <b><a name="ReadBody">ReadBody</a> $a %m</b>
  123. <p>Assigns body of message %m to variable $a.</p>
  124.  
  125. <b><a name="QuoteBody">QuoteBody</a> $a quotestring</b>
  126. <p>It will "quote" or insert quotestring as the beginning of each line of variable $a. quotestring is optional and if left out "greater than" sign is used.</p>
  127.  
  128. <b><a name="UnquoteBody">UnquoteBody</a> $a quotestring</b>
  129. <p>Removes leading quotestring from each line of $a. Reverses QuoteBody. If quotestring is not specified, "greater than" symbol is assumed.</p>
  130.  
  131. <b><a name="ExtractName">ExtractName</a> $a</b>
  132. <p>Extract person's name from properly formatted e-mail address entry, like "Jane Doe <jdoe@provider.com>". Result overwrites the original value in $a.</p>
  133.  
  134. <b><a name="ExtractEmail">ExtractEmail</a> $a</b>
  135. <p>Just like the ExtractName, but instead extracts the e-mail address.</p>
  136. <i><p>Following commands read or set current e-mail account information:</p>
  137.  
  138. </i><b><a name="ReadAccount">ReadAccount</a> $a</b>
  139. <p>Places the name of the current account in $a.</p>
  140.  
  141. <b><p><a name="ReadFullname">ReadFullname</a> $a</p>
  142. <p>ReadEmail $a</p>
  143. <p>ReadPOPServer $a</p>
  144. <p>ReadPOPLogin $a</p>
  145. <p>ReadPassword $a</p>
  146. <p>ReadSignature $a</p>
  147. <p>ReadAccountTag $a</p>
  148. </b><p>All of these commands read the respective values for the current account and place them in the variable $a.</p>
  149.  
  150. <b><p><a name="SetAccount">SetAccount</a> $a</p>
  151. </b><p>Sets which account to use as the current account. This command will affect all of the account reading or setting commands described.</p>
  152.  
  153. <b><p><a name="SetFullname">SetFullname</a> $a</p>
  154. <p>SetEmail $a</p>
  155. <p>SetPOPServer $a</p>
  156. <p>SetPOPLogin $a</p>
  157. <p>SetPassword $a</p>
  158. <p>SetSignature $a</p>
  159. </b><p>SetAccountTag $a</p>
  160. <p>All of these commands will permanently set the respective value for the current account.</p>
  161.  
  162. <i><p><a name="VariableCommands">Variable Commands</a></p>
  163.  
  164. </i><b><p><a name="Set">Set</a> $a string</p>
  165. <p>Set #a integer</p>
  166. Set &a boolean<p>
  167. Set &a bool-expression</b>
  168. <p>All Set commands will assign the value on the right to the variable on the left. Right side can be a value ("John") or a variable ($date). You can assign out of type, just be careful when you use those values later on.</p>
  169.  
  170. <b><p><a name="External">External</a> $userdata1 desc value</p>
  171. <p>External $userfile1 desc value</p>
  172. </b><p>All External commands work similar to Set, they assign value to a variable, except they cannot assign a variable to a variable, and the External declarations will show up on the Setup tab of the Scripts. You can only use $userdata1 through $userdata4 and $userfile1 through $userfile4 for variable names if you want Poco to display them to the user. For each $userdata Poco will display an edit field with the description "desc" in the Setup pane of the Filters and Scripts window. Each $userfile will map a button on the same pane to the filename in "value". When user clicks on that button, Poco will launch Notepad with that file loaded. Please take a look at the sample scripts provided for demonstration.</p>
  173.  
  174. <b><a name="InputBox">InputBox</a> $a desc value</b>
  175. <p>Use InputBox when you want to prompt the user for a value. A window will pop up with question in "desc", and with a default value filled out as "value". User can edit the value, as well as cancel the script at this point. Do not use InputBox in time sensitive operations, as it stops the script execution until user tells it to proceed. The value will be placed in $a.</p>
  176.  
  177. <i><p><a name="VariableOperations">Variable Operations</a></p></i>
  178.  
  179. <b><a name="AddStrings">AddStrings</a> $a $b, $c, $d, ...</b>
  180. <p>Adds all the strings together and places the result in $a. Integers are added as strings.</p>
  181.  
  182. <b><a name="AddIntegers">AddIntegers</a> #a #b</b>
  183. <p>Adds integers and places the result in #a. Non-integers are interpreted as zero.</p>
  184.  
  185. <b><a name="Multiply">Multiply</a> #a #b</b>
  186. <p>Multiplies the two and places the result in #a. Non-integers are interpreted as one.</p>
  187.  
  188. <b><a name="Divide">Divide</a> #a #b</b>
  189. <p>Division. Non-integers are interpreted as one. Division by zero returns zero.</p>
  190.  
  191. <b><a name="SubIntegers">SubIntegers</a> #a #b</b>
  192. <p>Subtraction. Non-integers are interpreted as zero.</p>
  193.  
  194. <b><a name="SubStrings">SubStrings</a> $a $b</b>
  195. <p>It will delete substring $b from $a.</p>
  196.  
  197. <b><a name="And">And</a> &a &b</b>
  198. <b><p>Or &a &b</p></b>
  199. <b><p>Xor &a &b</p></b>
  200. <b>Not &a</b>
  201. <p>Above are all boolean operations, on boolean variables. Result is placed in the first variable.</p>
  202.  
  203. <b><a name="Lowercase">Lowercase</a> $a</b>
  204. <b><p>Uppercase $a</p></b>
  205. <p>Converts the string to lowercase or uppercase.</p>
  206.  
  207. <b><a name="Trim">Trim</a> $a</b>
  208. <p>Trims left and right spaces from string $a.</p>
  209.  
  210. <b><a name="InsertString">InsertString</a> $a #n $b</b>
  211. <p>Inserts string $b into variable $a at the position #n in characters. If #n is larger than the size of $a, the the string is appended to the back of $a. Character positions are one-based, meaning the first character has a position of 1.</p>
  212.  
  213. <b><a name="InsertLine">InsertLine</a> $a #n $b</b>
  214. <p>Acts identical to InsertString, except it works with lines on multiline variable $a, rather than characters. Line positions are zero-based, meaning the first line has a position of 0.</p>
  215.  
  216. <b><a name="StringPos">StringPos</a> #n $b $a</b>
  217. <p>Returns in #n the position in characters of string $b inside string $a.</p>
  218.  
  219. <b><a name="GetLine">GetLine</a> $a #n $b</b>
  220. <p>Places line number #n of multiline variable $b into $a.</p>
  221.  
  222. <b><a name="ChopString">ChopString</a> $a #n #c</b>
  223. <p>Deletes a portion of string $a, starting from position #n, and deleting the next #c characters.</p>
  224.  
  225. <b><a name="IsNumber">IsNumber</a> &a #b/$b/&b</b>
  226. <p>Returns true if variable #b/$b/&b contains a number that can be further processed. Otherwise returns false. Due to relaxed variable typing of PocoScript, you can assign a non-integer variable to a number variable like #b. Use this function in those cases.</p>
  227.  
  228. <b><a name="IsBoolean">IsBoolean</a> &a #b/$b/&b</b>
  229. <p>Similar to IsNumber, but checks for boolean values in the second parameter. Boolean values are 1, 0, true, false, on, off, yes, no. They are not case sensitive. If a value is not boolean, it will still evaluate to true when tested.</p>
  230.  
  231. <i><p><a name="Other">Other</a></p></i>
  232.  
  233. <b><a name="GetDate">GetDate</a> $a<p>
  234. GetTime $a</b>
  235. <p>Places current date or time in $a.</p>
  236.  
  237. <b><a name="SubDays">SubDays</a> #a $b $c</b>
  238. <p>Calculates the difference in days between dates in $b and $c and puts the result in #a. Order of $b and $c is irrelevant - the result is always positive, except when an invalid date is in either $b or $c; the result is then -1.</p>
  239.  
  240. <p><a name="External">External</a></p>
  241.  
  242. <b><a name="AppendToFile">AppendToFile</a> bool</b>
  243. <p>Use AppendToFile to modify saving to file. When set to true, if file already exists, saved information is appended to the file. When set to false, if file exists it is overwritten with saved information. This variable defaults to false when the script is started.</p>
  244.  
  245. <b><a name="Execute">Execute</a> file params</b>
  246. <p>Starts an external application specified in "file". The application name has to be either fully qualified or in the windows search path. If you want to pass any parameters to the application, use the optional "params" parameter. Executable name and parameters need to be separated for parameters to be passed correctly. You can also pass non-executable filename - as long as it is registered with Windows correctly, Poco will launch the viewer application on that file. Yes, you can also launch fully qualified URLs, such as http or even mailto.</p>
  247.  
  248. <b><a name="ExecuteAndWait">ExecuteAndWait</a> file params</b>
  249. <p>Works identical to Execute, but unlike Execute, ExecuteAndWait will stop PocoÆs operation and script until the external process is finished. Obviously, caution needs to be exercised when using this command, but it is a great help when running external message processors, such as message encryption.</p>
  250.  
  251. <b><a name="PlaySound">PlaySound</a> file/user/system</b>
  252. <p>PlaySound will play a WAV file specified by "file". If you pass the literal "user", PlaySound will instead play the sound defined by the user, in Program Settings. Passing the literal "system" will play the built-in New Mail sound.</p>
  253.  
  254. <b><a name="MessageBox">MessageBox</a> $a</b>
  255. <p>Shows the informational dialog box with an OK button. Text in $a is used for the message.</p>
  256.  
  257. <b><a name="Beep">Beep</a></b>
  258. <p>Sounds the Windows system beep, as defined by the user.</p>
  259.  
  260. <b><a name="Wait">Wait</a> #n</b>
  261. <p>Stops the execution of the script for #n seconds.</p>
  262.  
  263. <b><a name="RefreshMailboxes">RefreshMailboxes</a></b>
  264. <p>Affects the main application window, it will refresh the mailboxes currently showing in Mailboxes window. Use it when you have just created or deleted a mailbox, to keep the application in-sync. If not used, Poco will pick up the new mailboxes on restart, or if user right-clicks and chooses Refresh.</p>
  265.  
  266. <b><a name="DeleteFile">DeleteFile</a> file</b>
  267. <p>Deletes a file if it exists.</p>
  268.  
  269. <b><a name="FileExists">FileExists</a> &a file</b>
  270. <p>If the file exists, &a is set to true, otherwise it is set to false.</p>
  271.  
  272. <i><p><a name="Branching">Branching</a></p>
  273.  
  274. </i><b><p><a name="If">If</a> $a bool $b then label</p>
  275. <p>If #a bool #b then label</p>
  276. <p>If &bool then label</p>
  277. </b><p>Continues the execution of the program at "label" if expression evaluates to true.</p>
  278.  
  279. <b><p><a name="Goto">Goto</a> label</p>
  280. </b><p>Forces execution to jump to "label"</p>
  281.  
  282. <b><p>:<a name="label">label</a></p>
  283. </b><p>Marks the line for branching instructions. Note that the actual label name is preceded with a colon.</p>
  284.  
  285. <b><p><a name="Exit">Exit</a></p>
  286. </b><p>Terminates the execution of the script.</p>
  287.  
  288. <font size="-1"><b><i>Back to <a href="index.html">Poco Help</a> : <a href="pocoscriptindex.html">PocoScript Index</a> : <a href="#top">Top</a></i></b></font><p>
  289.  
  290. </font></body>
  291. </html>
  292.